home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Interactive CD Sampler / Microsoft Interactive CD Sampler.iso / DEMOS / GREET / GREETS2.DIR / Internal_90.ls < prev    next >
Encoding:
Text File  |  1996-08-01  |  314 b   |  17 lines

  1. on exitFrame
  2.   global gRewind
  3.   if not soundBusy(2) then
  4.     if not gRewind then
  5.       set gRewind to the ticks + 360
  6.     else
  7.       if the ticks < gRewind then
  8.         go(the frame)
  9.       else
  10.         set gRewind to 0
  11.         puppetTransition(51, 1)
  12.         go(the frame + 1)
  13.       end if
  14.     end if
  15.   end if
  16. end
  17.